home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / chrome / comm.jar / content / cookie / cookieAcceptDialog.js next >
Text File  |  2006-02-28  |  9KB  |  224 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is cookie manager code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Michiel van Leeuwen.
  18.  * Portions created by the Initial Developer are Copyright (C) 2002
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. const nsICookieAcceptDialog = Components.interfaces.nsICookieAcceptDialog;
  38. const nsIDialogParamBlock = Components.interfaces.nsIDialogParamBlock;
  39. const nsICookie = Components.interfaces.nsICookie;
  40. const nsICookiePromptService = Components.interfaces.nsICookiePromptService;
  41.  
  42. var params; 
  43. var cookieBundle;
  44. var gDateService = null;
  45.  
  46. var showDetails = "";
  47. var hideDetails = "";
  48. var detailsAccessKey = "";
  49.  
  50. function onload()
  51. {
  52.   doSetOKCancel(cookieAcceptNormal, cookieDeny, cookieAcceptSession);
  53.  
  54.   var dialog = document.documentElement;
  55.  
  56.   document.getElementById("Button2").collapsed = false;
  57.   
  58.   document.getElementById("ok").label = dialog.getAttribute("acceptLabel");
  59.   document.getElementById("ok").accessKey = dialog.getAttribute("acceptKey");
  60.   document.getElementById("Button2").label = dialog.getAttribute("extra1Label");
  61.   document.getElementById("Button2").accessKey = dialog.getAttribute("extra1Key");
  62.   document.getElementById("cancel").label = dialog.getAttribute("cancelLabel");
  63.   document.getElementById("cancel").accessKey = dialog.getAttribute("cancelKey");
  64.  
  65.   // hook up button icons where implemented
  66.   document.getElementById("ok").setAttribute("icon","accept");
  67.   document.getElementById("cancel").setAttribute("icon","cancel");
  68.   document.getElementById("disclosureButton").setAttribute("icon","properties");
  69.  
  70.   if (!gDateService) {
  71.     const nsScriptableDateFormat_CONTRACTID = "@mozilla.org/intl/scriptabledateformat;1";
  72.     const nsIScriptableDateFormat = Components.interfaces.nsIScriptableDateFormat;
  73.     gDateService = Components.classes[nsScriptableDateFormat_CONTRACTID]
  74.                              .getService(nsIScriptableDateFormat);
  75.   }
  76.  
  77.   cookieBundle = document.getElementById("cookieBundle");
  78.  
  79.   //cache strings
  80.   if (!showDetails) {
  81.     showDetails = cookieBundle.getString('showDetails');
  82.   }
  83.   if (!hideDetails) {
  84.     hideDetails = cookieBundle.getString('hideDetails');
  85.   }
  86.   detailsAccessKey = cookieBundle.getString('detailsAccessKey');
  87.  
  88.   if (document.getElementById('infobox').hidden) {
  89.     document.getElementById('disclosureButton').setAttribute("label",showDetails);
  90.   } else {
  91.     document.getElementById('disclosureButton').setAttribute("label",hideDetails);
  92.   }
  93.   document.getElementById('disclosureButton').setAttribute("accesskey",detailsAccessKey);
  94.  
  95.   if ("arguments" in window && window.arguments.length >= 1 && window.arguments[0]) {
  96.     try {
  97.       params = window.arguments[0].QueryInterface(nsIDialogParamBlock);
  98.       var objects = params.objects;
  99.       var cookie = params.objects.queryElementAt(0,nsICookie);
  100.       
  101.       var cookiesFromHost = params.GetInt(nsICookieAcceptDialog.COOKIESFROMHOST);
  102.  
  103.       var messageFormat;
  104.       if (params.GetInt(nsICookieAcceptDialog.CHANGINGCOOKIE))
  105.         messageFormat = 'permissionToModifyCookie';
  106.       else if (cookiesFromHost > 1)
  107.         messageFormat = 'permissionToSetAnotherCookie';
  108.       else if (cookiesFromHost == 1)
  109.         messageFormat = 'permissionToSetSecondCookie';
  110.       else
  111.         messageFormat = 'permissionToSetACookie';
  112.  
  113.       var hostname = params.GetString(nsICookieAcceptDialog.HOSTNAME);
  114.  
  115.       var messageText;
  116.       if (cookie)
  117.         messageText = cookieBundle.getFormattedString(messageFormat,[hostname, cookiesFromHost]);
  118.       else
  119.         // No cookies means something went wrong. Bring up the dialog anyway
  120.         // to not make the mess worse.
  121.         messageText = cookieBundle.getFormattedString(messageFormat,["",cookiesFromHost]);
  122.  
  123.       var messageParent = document.getElementById("dialogtextbox");
  124.       var messageParagraphs = messageText.split("\n");
  125.  
  126.       // use value for the header, so it doesn't wrap.
  127.       var headerNode = document.getElementById("dialog-header");
  128.       headerNode.setAttribute("value",messageParagraphs[0]);
  129.  
  130.       // use childnodes here, the text can wrap
  131.       for (var i = 1; i < messageParagraphs.length; i++) {
  132.         var descriptionNode = document.createElement("description");
  133.         text = document.createTextNode(messageParagraphs[i]);
  134.         descriptionNode.appendChild(text);
  135.         messageParent.appendChild(descriptionNode);
  136.       }
  137.  
  138.       if (cookie) {
  139.         document.getElementById('ifl_name').setAttribute("value",cookie.name);
  140.         document.getElementById('ifl_value').setAttribute("value",cookie.value);
  141.         document.getElementById('ifl_host').setAttribute("value",cookie.host);
  142.         document.getElementById('ifl_path').setAttribute("value",cookie.path);
  143.         document.getElementById('ifl_isSecure').setAttribute("value",
  144.                                                                  cookie.isSecure ?
  145.                                                                     cookieBundle.getString("forSecureOnly") : cookieBundle.getString("forAnyConnection")
  146.                                                           );
  147.         document.getElementById('ifl_expires').setAttribute("value",GetExpiresString(cookie.expires));
  148.         document.getElementById('ifl_isDomain').setAttribute("value",
  149.                                                                  cookie.isDomain ?
  150.                                                                     cookieBundle.getString("domainColon") : cookieBundle.getString("hostColon")
  151.                                                             );
  152.       }
  153.       // set default result to not accept the cookie
  154.       params.SetInt(nsICookieAcceptDialog.ACCEPT_COOKIE, 0);
  155.       // and to not persist
  156.       params.SetInt(nsICookieAcceptDialog.REMEMBER_DECISION, 0);
  157.     } catch (e) {
  158.     }
  159.   }
  160. }
  161.  
  162. function showhideinfo()
  163. {
  164.   var infobox=document.getElementById('infobox');
  165.  
  166.   if (infobox.hidden) {
  167.     infobox.setAttribute("hidden","false");
  168.     document.getElementById('disclosureButton').setAttribute("label",hideDetails);
  169.   } else {
  170.     infobox.setAttribute("hidden","true");
  171.     document.getElementById('disclosureButton').setAttribute("label",showDetails);
  172.   }
  173.   sizeToContent();
  174. }
  175.  
  176. function cookieAcceptNormal()
  177. {
  178.   // accept the cookie normally
  179.   params.SetInt(nsICookieAcceptDialog.ACCEPT_COOKIE, nsICookiePromptService.ACCEPT_COOKIE); 
  180.   // And remember that when needed
  181.   params.SetInt(nsICookieAcceptDialog.REMEMBER_DECISION, document.getElementById('persistDomainAcceptance').checked);
  182.   window.close();
  183. }
  184.  
  185. function cookieAcceptSession()
  186. {
  187.   // accept for the session only
  188.   params.SetInt(nsICookieAcceptDialog.ACCEPT_COOKIE, nsICookiePromptService.ACCEPT_SESSION_COOKIE);
  189.   // And remember that when needed
  190.   params.SetInt(nsICookieAcceptDialog.REMEMBER_DECISION, document.getElementById('persistDomainAcceptance').checked);
  191.   window.close();
  192. }
  193.  
  194. function cookieDeny()
  195. {
  196.   // say that the cookie was rejected
  197.   params.SetInt(nsICookieAcceptDialog.ACCEPT_COOKIE, nsICookiePromptService.DENY_COOKIE); 
  198.   // And remember that when needed
  199.   params.SetInt(nsICookieAcceptDialog.REMEMBER_DECISION, document.getElementById('persistDomainAcceptance').checked);
  200.   window.close();
  201. }
  202.  
  203. function GetExpiresString(secondsUntilExpires) {
  204.   if (secondsUntilExpires) {
  205.     var date = new Date(1000*secondsUntilExpires);
  206.  
  207.     // if a server manages to set a really long-lived cookie, the dateservice
  208.     // can't cope with it properly, so we'll just return a blank string
  209.     // see bug 238045 for details
  210.     var expiry = "";
  211.     try {
  212.       expiry = gDateService.FormatDateTime("", gDateService.dateFormatLong,
  213.                                            gDateService.timeFormatSeconds, 
  214.                                            date.getFullYear(), date.getMonth()+1, 
  215.                                            date.getDate(), date.getHours(),
  216.                                            date.getMinutes(), date.getSeconds());
  217.     } catch(ex) {
  218.       // do nothing
  219.     }
  220.     return expiry;
  221.   }
  222.   return cookieBundle.getString("atEndOfSession");
  223. }
  224.